home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0068 / register.bat < prev    next >
DOS Batch File  |  1997-03-23  |  1KB  |  29 lines

  1. echo off
  2. cls
  3. echo ┌────────────────────────────────────────────────────────────────────────┐
  4. echo │ We are now ready to print a copy of the registration form for the ESF's│
  5. echo │ TrueType Collection 1. Registered users receive a free font newsletter,│
  6. echo │ additional bonus fonts, access to technical support, and can purchase  │
  7. echo │ our giant 202 outline TrueType collection at the special price of$49.50│
  8. echo │                                                                        │
  9. echo │ Make sure your printer is on and ready to run. This batch file assumes │
  10. echo │ your printer is attached to LPT1:. If you use a different printer port │
  11. echo │ hit Ctrl-C now to stop this batch file. Then restart the batch file,   │
  12. echo │ passing it the printer port you do use:                                │
  13. echo │                                                                        │
  14. echo │ REGISTER LPT2    or    REGISTER COM1                                   │
  15. echo │                                                                        │
  16. echo │ If you *don't* want to print this, press the Ctrl-C key now to abort   │
  17. echo │ this batch file and return to INSTALL.                                 │
  18. echo └────────────────────────────────────────────────────────────────────────┘
  19. pause
  20. echo Printing a copy of ESF's TrueType Collection 1 Registration form....
  21. if "%1"=="" goto DOLPT1
  22. copy register.doc %1:
  23. goto done
  24. :DOLPT1
  25. copy register.doc LPT1:
  26. :done
  27.  
  28.  
  29.